
section{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
}


#booktable{
    border: 2px solid black;
    border-radius: 5px;
    width:90%;
    max-width: 500px;
    background-color: azure;
    margin: auto;
    padding: 1rem;
}

#booktable h3{
    margin: auto;
}

.textinput{
    width: 95%;
    border:1px solid #0f0f0f;
    border-radius: 3px;
    margin:1rem;
    background: none;
}

.textinput label{
    display: block;
    padding: 0.5rem;
}

.textinput input{
    width:90%;
    border: none;
    outline: none;
    padding: 0.5rem;
    background: none;
}


@media screen and (max-width:768px){
    .wrapper{
        grid-template-columns: 1fr;
    }
    
}